home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / userbox / publicdomain / installproged / triton / install next >
Text File  |  1995-08-25  |  643b  |  25 lines

  1. (set @default-dest "")
  2. (set tritonlib "triton.library")
  3.  
  4. (set #bad-kick "You must be using Kickstart 2.04 to run Triton.")
  5. (set #copying-triton "Copying triton.library to Libs:...")
  6. (set #install-msg
  7. (cat "\n\nTriton installation script.\n"
  8.      "This script installs Triton library on your Amiga.\n\n"
  9.      "Read the 'ReadMe' file for\n"
  10.      "more information on Triton.\n\n"
  11.      "Triton © 1993-1994 Stefan Zeiger.\n"
  12.      "All rights reserved."))
  13.  
  14. (if (< (/ (getversion) 65536) 37) ((abort #bad-kick)))
  15.  
  16. (message #install-msg)
  17.  
  18. (copylib
  19.     (prompt "\n" #copying-triton)
  20.     (help @copylib-help)
  21.     (source tritonlib)
  22.     (dest "Libs:")
  23.     (confirm)
  24. )
  25.